home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / ISSUE18 / SURVIVE / FMPASSWD.PAS < prev    next >
Pascal/Delphi Source File  |  1996-11-18  |  1KB  |  69 lines

  1. unit fmPasswd;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   StdCtrls;
  8.  
  9. type
  10.   TdlgPassword = class(TForm)
  11.     edtOldPassword: TEdit;
  12.     edtNewPassword: TEdit;
  13.     edtConfirmPassword: TEdit;
  14.     Label1: TLabel;
  15.     Label2: TLabel;
  16.     Label3: TLabel;
  17.     btnOK: TButton;
  18.     btnCancel: TButton;
  19.     procedure btnOKClick(Sender: TObject);
  20.     procedure FormShow(Sender: TObject);
  21.   private
  22.   public
  23.   end;
  24.  
  25. var
  26.   dlgPassword: TdlgPassword;
  27.  
  28. function LaunchChangePasswordDialog: TModalResult;
  29. function LaunchPasswordExpiredDialog: TModalResult;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. uses
  36.   Login;
  37.  
  38. function LaunchChangePasswordDialog;
  39. begin
  40.   dlgPassword.Caption := 'Change Password';
  41.   Result := dlgPassword.ShowModal;
  42. end;
  43.  
  44. function LaunchPasswordExpiredDialog;
  45. begin
  46.   dlgPassword.Caption := 'Password Expired';
  47.   Result := dlgPassword.ShowModal;
  48. end;
  49.  
  50. procedure TdlgPassword.btnOKClick(Sender: TObject);
  51. begin
  52.   if edtNewPassword.Text <> edtConfirmPassword.Text then
  53.     raise Exception.Create('The confirmation password is not correct.');
  54.  
  55.   LoginManager.ChangePassword(edtOldPassword.Text, edtNewPassword.Text);
  56.  
  57.   ModalResult := mrOK;
  58. end;
  59.  
  60. procedure TdlgPassword.FormShow(Sender: TObject);
  61. begin
  62.   edtOldPassword.Text := '';
  63.   edtNewPassword.Text := '';
  64.   edtConfirmPassword.Text := '';
  65.   edtOldPassword.SetFocus;
  66. end;
  67.  
  68. end.
  69.